home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / mldonkey_telnet.nasl < prev    next >
Text File  |  2005-03-31  |  1KB  |  56 lines

  1. #
  2. # This script was written by Michel Arboi <arboi@alussinan.org>
  3. #
  4. # GPL
  5. #
  6. # Note: this script is not very useful because mldonkey only allows
  7. # connections from localhost by default
  8.  
  9.  
  10. if(description)
  11. {
  12.   script_id(11124);
  13.   script_version ("$Revision: 1.8 $");
  14.  
  15.   script_name(english:"mldonkey telnet");
  16.  
  17.   desc["english"] = "
  18. mldonkey telnet interface might be running on this port. 
  19. This peer to peer software is used to share files.
  20. 1. This may be illegal.
  21. 2. You may have access to confidential files
  22. 3. It may eat too much bandwidth
  23.  
  24.  
  25. Solution: disable it
  26.  
  27. Risk factor : Medium";
  28.  
  29.   script_description(english:desc["english"]);
  30.  
  31.   summary["english"] = "Detect mldonkey telnet interface";
  32.   script_summary(english:summary["english"]);
  33.  
  34.   script_category(ACT_GATHER_INFO);
  35.  
  36.   script_copyright(english:"This script is Copyright (C) 2002 Michel Arboi");
  37.   family["english"] = "Peer-To-Peer File Sharing";
  38.   script_family(english:family["english"]);
  39.   script_dependencie("find_service2.nasl");
  40.   exit(0);
  41. }
  42.  
  43. include("misc_func.inc");
  44.  
  45. port = get_kb_item("Services/mldonkey-telnet");
  46. if (! port) port = 4000;
  47. if ( ! get_port_state(port) ) exit(0);
  48.  
  49. r = get_unknown_banner(port: port, dontfetch:0);
  50.  
  51. if(!r)exit(0);
  52. if ("Welcome on mldonkey command-line" >< r)
  53. {
  54.  security_warning(port);
  55. }
  56.